{"version":3,"file":"static/chunks/pages/[[...slug]]-8c545cc7d15fa0fa.js","mappings":"+EACA,4CACA,eACA,WACA,OAAe,EAAQ,KAAoC,CAC3D,EACA,SAFsB,8NCsBtB,IAAMA,EAAeC,IAAQ,IAC3B,+PAAmE,CAACC,IAAI,CACtE,GAAQ,EAAEC,QAASC,EAAEJ,YAAY,CAAC,6CAItC,SAASK,IACP,GAAM,OAAEC,CAAK,QAAEC,CAAM,CAAE,CAAGC,CAAAA,EAAAA,EAAAA,CAAAA,CAAYA,GAChC,0BAAEC,CAAwB,CAAE,CAAGC,CAAAA,EAAAA,EAAAA,CAAAA,CAAaA,GAE5CC,EAAYF,EAAyBH,UAE3C,GAA6B,KAAK,CAAhBC,EAIX,UAACK,EAAAA,CAAqBA,CAAAA,CAACN,MAAOK,IAH5B,UAACX,EAAAA,CAAAA,EAIZ,CAEA,SAASa,EAA4B,CAKnC,KALmC,QACnCC,CAAM,UACNC,CAAQ,CAGR,CALmC,EAMnC,MACE,UAACC,EAAAA,CAAoBA,CAAAA,CAACF,OAAQA,WAASC,GAE3C,UAEe,SAASE,EAAKC,CAAgB,MAWCA,EAL5C,MALAC,CAAAA,EAAAA,EAAAA,SAAAA,CAASA,CAAC,KAERC,OAAOF,KAAK,CAAGA,CACjB,EAAG,CAACA,EAAM,EAGR,UAACG,EAAAA,CAAaA,CAAAA,CAACC,SAAUJ,EAAMK,OAAO,CAAEC,UAAW,CAAEC,IAAIA,CAAAA,GAAC,WACxD,UAACC,EAAAA,CAAsBA,CAAAA,CAACC,WAAYC,EAAAA,CAAkBA,MADCH,IAErD,UAACI,EAAAA,CAAiBA,CAAAA,CAAE,GAAGX,CAAK,UAC1B,UAACL,EAAAA,CAA4BC,MAAM,OAAEI,EAAAA,KAAAA,EAAAA,EAAOJ,MAAM,CAAbI,SACnC,UAACY,EAAAA,CAAqBA,CAAAA,CAACC,SAAS,OAAEb,EAAAA,KAAAA,EAAAA,QAAAA,CAAAA,CAAAA,EAAOc,UAAU,GAAjBd,KAAAA,IAAAA,EAAAA,KAAAA,EAAAA,EAAmBa,SAAS,UAC5D,UAAC1B,EAAAA,CAAAA,YAOf","sources":["webpack://_N_E/?e48d","webpack://_N_E/./src/pages/[[...slug]].tsx"],"sourcesContent":["\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/[[...slug]]\",\n function () {\n return require(\"private-next-pages/[[...slug]].tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/[[...slug]]\"])\n });\n }\n ","import \"design-system/styles/index.scss\";\n\nimport { PropsWithChildren, useEffect } from \"react\";\nimport dynamic from \"next/dynamic\";\nimport Head from \"next/head\";\nimport { LazyComponentsProvider } from \"design-system/components/system/lazy-component/use-lazy-components\";\nimport { TranslationsProvider } from \"design-system/hooks/use-translations\";\nimport { frontendComponents } from \"frontend/components\";\nimport { GetServerSideProps } from \"next\";\nimport { RenderContentfulEntry } from \"frontend/contentful/components/utils/render-contentful-entry\";\nimport {\n ContentfulLivePreview,\n useContentful,\n} from \"frontend/hooks/use-contentful\";\nimport { createServerContext } from \"frontend/lib/create-server-context\";\nimport { PageProps } from \"frontend/types\";\nimport { PagePropsProvider, usePageProps } from \"frontend/hooks/use-page-props\";\nimport { getPageProps } from \"frontend/contentful/lib/get-page-props\";\nimport { getContentfulRedirect } from \"frontend/contentful/lib/get-redirect\";\nimport { StoreProvider } from \"design-system/store/store-provider\";\nimport { logEvent } from \"frontend/lib/log-event\";\nimport { userAccess } from \"frontend/contentful/components/utils/get-user-access\";\nimport { displaySite } from \"frontend/contentful/components/utils/get-display-site\";\nimport { getLocaleRedirect } from \"frontend/contentful/components/utils/get-locale-redirect\";\nimport { resolveEntry } from \"frontend/contentful/lib/resolve-includes\";\n\nconst Error404Page = dynamic(() =>\n import(\"frontend/contentful/components/pages/error-404.contentful\").then(\n (m) => ({ default: m.Error404Page }),\n ),\n);\n\nfunction RenderPage() {\n const { entry, status } = usePageProps();\n const { useContentfulLiveUpdates } = useContentful();\n\n const liveEntry = useContentfulLiveUpdates(entry);\n\n if (!liveEntry || status === 404) {\n return ;\n }\n\n return ;\n}\n\nfunction WrappedTranslationsProvider({\n locale,\n children,\n}: PropsWithChildren<{\n locale: string;\n}>) {\n return (\n {children}\n );\n}\n\nexport default function Page(props: PageProps) {\n useEffect(() => {\n // set props on window for debugging\n window.props = props;\n }, [props]);\n\n return (\n \n \n \n \n \n \n \n \n \n \n \n );\n}\n\nexport const getServerSideProps: GetServerSideProps = async ({\n req,\n res,\n resolvedUrl,\n locale,\n defaultLocale,\n locales,\n}) => {\n const ctx = createServerContext({\n slug: resolvedUrl,\n headers: req.headers,\n locale: locale,\n defaultLocale: defaultLocale,\n supportedLocales: locales,\n });\n\n const url = `${ctx.request.domain}.hbs.edu${ctx.request.path}${ctx.request.search}`;\n const timing = Date.now();\n\n const { pageProps } = await getPageProps({ ctx });\n const site = resolveEntry(pageProps.includes, pageProps.site);\n\n if (!pageProps.entry || !pageProps.site) {\n const redirect = await getContentfulRedirect(ctx);\n\n if (redirect) {\n console.info(`Redirect from ${url} to ${redirect.destination}`);\n return { redirect };\n }\n\n pageProps.status = 404;\n }\n\n if (pageProps.status === 404) {\n res.statusCode = 404;\n }\n\n // Set status code to 500 if there are any errors so that the CDN can use a backup version of the page\n if (ctx.errors.length > 0) {\n res.statusCode = 500;\n }\n\n // allow setting a failure rate for testing\n if (ctx.request.headers[\"x-failure-rate\"]) {\n const rate = parseFloat(ctx.request.headers[\"x-failure-rate\"] as string);\n if (Math.random() < rate / 100) {\n res.statusCode = 500;\n }\n }\n\n // Check if user is logged in and has the correct permissions by using a seperate function\n const redirect = await userAccess(ctx, resolvedUrl, pageProps);\n\n if (redirect?.destination) {\n return { redirect };\n } else if (redirect?.props) {\n pageProps.session = redirect.props.session;\n }\n\n // Check if the site is live or if the user is previewing the site\n const display = site ? displaySite(ctx, site) : undefined;\n if (display?.destination) {\n return { redirect: display };\n }\n\n // Check if current request is for a locale that doesn't have translations\n const localeRedirect = getLocaleRedirect(ctx, resolvedUrl, pageProps);\n if (localeRedirect?.destination) {\n return { redirect: localeRedirect };\n }\n\n logEvent({\n event: \"pageview\",\n ms: Date.now() - timing,\n status: res.statusCode,\n url: req.url || \"\",\n });\n\n if (\n !ctx.contentful.isPreview &&\n !pageProps.session?.user.loggedIn &&\n res.statusCode !== 500\n ) {\n // cache anonymous and non-preview content for 5 min\n res.setHeader(\"cache-control\", \"public, s-maxage=300, stale-if-error=7200\");\n }\n\n // for security, remove cookies from the request object\n // this is to prevent any sensitive HTTP only cookies from being exposed\n pageProps.request.cookies = {};\n\n return { props: pageProps };\n};\n"],"names":["Error404Page","dynamic","then","default","m","RenderPage","entry","status","usePageProps","useContentfulLiveUpdates","useContentful","liveEntry","RenderContentfulEntry","WrappedTranslationsProvider","locale","children","TranslationsProvider","Page","props","useEffect","window","StoreProvider","location","request","framework","Head","LazyComponentsProvider","components","frontendComponents","PagePropsProvider","ContentfulLivePreview","isPreview","contentful"],"sourceRoot":"","ignoreList":[]}